home *** CD-ROM | disk | FTP | other *** search
- ;***************************************************************
- ;* PAM.MEM -- Memory allocation controls for PAM modem *
- ;* *
- ;* Copyright (C) 1991 by Alef Null. All rights reserved. *
- ;* Author(s): Jarkko Vuori, OH2LNS *
- ;* Modification(s): *
- ;***************************************************************
-
- ; P memory usage
- ; 0000 - 03FF program code
- ; 0400 - 07FF output buffer
- ; 0800 - 0FFF input buffer
-
- ; x: and y: must begin after l: which is max. 20 words long
- ; p: must begin after interrupt vectors
- base x:20,y:20,l:$0,p:$40
-
- ; PAM bulk data here, so that we can use short address for various items
- section PAM y:$30
-
- ; PAMdata section contains all modulo addressed parts of PAM section
- ; x: contains modulo-16 data
- section PAMData x:$40,y:$40 ; five lower bits must be zero
-
- ; Main section contains addressed parts
- ; x: contains modulo-1024 data
- section Init x:$400
-
- ; KissQue section contains data buffers modulo-1024
- section KissQue p:$0400
-